home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / TIME_ZON / CODOC.H < prev    next >
Text File  |  1991-11-08  |  609b  |  31 lines

  1. /****
  2.  * CODoc.h
  3.  *
  4.  ****/
  5.  
  6. #define    _H_CODoc            /* Include this file only once */
  7. #include <CDocument.h>
  8. #include <CApplication.h> 
  9. #include "CNameList.h"
  10.  
  11. struct CODoc : CDocument {
  12.  
  13.     CNameList * zones;        // Namelist of time zones
  14.  
  15.     void        IODoc(CApplication *aSupervisor, Boolean printable);
  16.     void        Dispose(void);
  17.  
  18.     void        DoCommand(long theCommand);
  19.     void        Recalc(void);                    // Refigure display text
  20.     void        Dawdle(long *maxSleep);
  21.  
  22.     void        UpdateMenus(void);  
  23.  
  24.     void        BuildWindow(Handle theData);
  25.     
  26.     void        Edit(void);
  27. };
  28.  
  29.  
  30. CNObject * NewZone(CObject * whose);            // For the CNameList
  31.